home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gscspace.h < prev    next >
C/C++ Source or Header  |  1996-06-03  |  7KB  |  190 lines

  1. /* Copyright (C) 1991, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gscspace.h */
  20. /* Client interface to color spaces */
  21.  
  22. #ifndef gscspace_INCLUDED
  23. #  define gscspace_INCLUDED
  24.  
  25. /* Color space type indices */
  26. typedef enum {
  27.         /* Supported in all configurations */
  28.     gs_color_space_index_DeviceGray = 0,
  29.     gs_color_space_index_DeviceRGB,
  30.         /* Supported in extended Level 1, and in Level 2 */
  31.     gs_color_space_index_DeviceCMYK,
  32.         /* Supported in Level 2 only */
  33.         /* DEC C truncates identifiers at 32 characters, so.... */
  34.     gs_color_space_index_CIEDEFG,
  35.     gs_color_space_index_CIEDEF,
  36.     gs_color_space_index_CIEABC,
  37.     gs_color_space_index_CIEA,
  38.     gs_color_space_index_Separation,
  39.     gs_color_space_index_Indexed,
  40.     gs_color_space_index_Pattern
  41. } gs_color_space_index;
  42.  
  43. /* Define the abstract type for color space objects. */
  44. #ifndef gs_color_space_DEFINED
  45. #  define gs_color_space_DEFINED
  46. typedef struct gs_color_space_s gs_color_space;
  47. #endif
  48.  
  49. /*
  50.  * We preallocate instances of the 3 device color spaces, and provide
  51.  * procedures that return them (to avoid upsetting compilers that don't
  52.  * allow extern pointers to abstract types).  Note that
  53.  * gs_color_space_DeviceCMYK() may return NULL if CMYK color support is not
  54.  * included in this configuration.
  55.  */
  56. extern const gs_color_space *gs_color_space_DeviceGray(P0());
  57. extern const gs_color_space *gs_color_space_DeviceRGB(P0());
  58. extern const gs_color_space *gs_color_space_DeviceCMYK(P0());
  59.  
  60. /*
  61.  * Color spaces are complicated because different spaces involve
  62.  * different kinds of parameters, as follows:
  63.  
  64. Space        Space parameters        Color parameters
  65. -----        ----------------        ----------------
  66. DeviceGray    (none)                1 real [0-1]
  67. DeviceRGB    (none)                3 reals [0-1]
  68. DeviceCMYK    (none)                4 reals [0-1]
  69. CIEBasedDEFG    dictionary            4 reals
  70. CIEBasedDEF    dictionary            3 reals
  71. CIEBasedABC    dictionary            3 reals
  72. CIEBasedA    dictionary            1 real
  73. Separation    name, alt_space, tint_xform    1 real [0-1]
  74. Indexed        base_space, hival, lookup    1 int [0-hival]
  75. Pattern        colored: (none)            dictionary
  76.         uncolored: base_space        dictionary + base space params
  77.  
  78. Space        Underlying or alternate space
  79. -----        -----------------------------
  80. Separation    Device, CIE
  81. Indexed        Device, CIE
  82. Pattern        Device, CIE, Separation, Indexed
  83.  
  84.  * Logically speaking, each color space type should be a different
  85.  * structure type at the allocator level.  This would potentially require
  86.  * either reference counting or garbage collector for color spaces, but that
  87.  * is probably better than the current design, which uses fixed-size color
  88.  * space objects and a second level of type discrimination.
  89.  */
  90.  
  91. /* Define abstract structure types for color space parameters. */
  92. typedef struct gs_cie_defg_s gs_cie_defg;
  93. typedef struct gs_cie_def_s gs_cie_def;
  94. typedef struct gs_cie_abc_s gs_cie_abc;
  95. typedef struct gs_cie_a_s gs_cie_a;
  96. typedef struct gs_separation_params_s gs_separation_params;
  97. typedef struct gs_indexed_params_s gs_indexed_params;
  98.  
  99. /* Define an abstract type for color space types. */
  100. typedef struct gs_color_space_type_s gs_color_space_type;
  101.  
  102. /* ---------------- Color spaces per se ---------------- */
  103.  
  104.     /* Base color spaces (Device and CIE) */
  105.  
  106. /*typedef struct gs_cie_defg_s gs_cie_defg;*/
  107. /*typedef struct gs_cie_def_s gs_cie_def;*/
  108. /*typedef struct gs_cie_abc_s gs_cie_abc;*/
  109. /*typedef struct gs_cie_a_s gs_cie_a;*/
  110. #define gs_base_cspace_params\
  111.     gs_cie_defg *defg;\
  112.     gs_cie_def *def;\
  113.     gs_cie_abc *abc;\
  114.     gs_cie_a *a
  115. typedef struct gs_base_color_space_s {
  116.     const gs_color_space_type _ds *type;
  117.     union {
  118.         gs_base_cspace_params;
  119.     } params;
  120. } gs_base_color_space;
  121.  
  122.     /* Paint (non-pattern) color spaces (base + Separation + Indexed) */
  123.  
  124. typedef ulong gs_separation_name;        /* BOGUS */
  125.  
  126. typedef struct gs_indexed_map_s gs_indexed_map;
  127. /*typedef struct gs_separation_params_s gs_separation_params;*/
  128. struct gs_separation_params_s {
  129.     gs_separation_name sname;
  130.     gs_base_color_space alt_space;
  131.     gs_indexed_map *map;
  132. };
  133. /*typedef struct gs_indexed_params_s gs_indexed_params;*/
  134. struct gs_indexed_params_s {
  135.     gs_base_color_space base_space;
  136.     int hival;
  137.     union {
  138.         gs_const_string table;    /* size is implicit */
  139.         gs_indexed_map *map;
  140.     } lookup;
  141.     bool use_proc;        /* 0 = use table, 1 = use proc & map */
  142. };
  143. #define gs_paint_cspace_params\
  144.     gs_base_cspace_params;\
  145.     gs_separation_params separation;\
  146.     gs_indexed_params indexed
  147. typedef struct gs_paint_color_space_s {
  148.     const gs_color_space_type _ds *type;
  149.     union {
  150.         gs_paint_cspace_params;
  151.     } params;
  152. } gs_paint_color_space;
  153.  
  154.     /* General color spaces (including patterns) */
  155.  
  156. typedef struct gs_pattern_params_s {
  157.     bool has_base_space;
  158.     gs_paint_color_space base_space;
  159. } gs_pattern_params;
  160. struct gs_color_space_s {
  161.     const gs_color_space_type _ds *type;
  162.     union {
  163.         gs_paint_cspace_params;
  164.         gs_pattern_params pattern;
  165.     } params;
  166. };
  167. /*extern_st(st_color_space);*/        /* in gxcspace.h */
  168. #define public_st_color_space()    /* in gscolor.c */\
  169.   gs_public_st_composite(st_color_space, gs_color_space,\
  170.     "gs_color_space", color_space_enum_ptrs, color_space_reloc_ptrs)
  171. #define st_color_space_max_ptrs 2 /* 1 base + 1 indexed */
  172.  
  173. /* ---------------- Procedures ---------------- */
  174.  
  175. /* Get the index of a color space. */
  176. gs_color_space_index gs_color_space_get_index(P1(const gs_color_space *));
  177.  
  178. /* Get the number of components in a color space. */
  179. int gs_color_space_num_components(P1(const gs_color_space *));
  180.  
  181. /* Get the base space of an Indexed color space. */
  182. /* We have to redefine this because the VAX VMS C compiler (but not */
  183. /* the preprocessor!) limits identifiers to 31 characters. */
  184. #define gs_color_space_indexed_base_space(pcs)\
  185.   gs_color_space_indexed_base(pcs)
  186. const gs_color_space *
  187.   gs_color_space_indexed_base_space(P1(const gs_color_space *));
  188.  
  189. #endif                    /* gscspace_INCLUDED */
  190.